#page a {
    border-bottom: dotted 1px var(--link);
    color: var(--link);
    transition: 0.25s;
}
#page a:hover {
    border-bottom: double 3px var(--link-hover);
    color: var(--link-hover);
    transition: 0.25s;
}
#page b {
    font-weight: 500;
}
#page ul {
    list-style-type: none !important;
    margin: 0 0 16px 16px;
    padding: 0;
}
#page ul li {
    list-style-type: none !important;
    margin: 4px 0;
    text-align: justify;
}
#page ul li:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text);
    border-radius: 50%;
    margin-right: 8px;
    margin-left: -12px;
}
#page ul li:first-of-type {
    margin-top: 0;
}
#page ul li:last-of-type {
    margin-bottom: 0;
}

#page h1 {
    display: block;
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}
#page h2 {
    display: block;
    margin: 0 0 16px;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
}
#page h3 {
    display: inline-block;
    margin: 0 0 16px;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    border-bottom: solid 1px var(--text);
}
#page p {
    margin: 0;
    padding: 0 0 16px;
    text-align: justify;
    font-weight: 300;
    font-size: 16px;
}
